home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2007 May
/
PCpro_2007_05.ISO
/
files
/
vollversionen
/
visualdataflex
/
VDF12.0.StudioDownload.exe
/
%MAINDIR%
/
Examples
/
Example Library
/
AppHtml
/
Debug.asp
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-03-10
|
315 b
|
20 lines
<% response.expires = 0 %>
<html>
<head>
<title>Debug Toggle</title>
</head>
<body>
The Debug mode is currently
<%
Bug = session ("debug")
If Bug =0 then
session ("debug") = 1
response.write (" On")
else
session ("debug") = 0
response.write (" Off")
end if
%>
</body>
</html>